projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3cea0ca
)
(cd-absolute): Add missing arg to `error'.
author
Richard M. Stallman
<rms@gnu.org>
Tue, 5 Aug 1997 05:49:10 +0000
(
05:49
+0000)
committer
Richard M. Stallman
<rms@gnu.org>
Tue, 5 Aug 1997 05:49:10 +0000
(
05:49
+0000)
lisp/files.el
patch
|
blob
|
history
diff --git
a/lisp/files.el
b/lisp/files.el
index a43477a1c8b3d094577051d32e9dcf5ebf9038b7..603195beb7c0ea88cd09a4c3053445a943644370 100644
(file)
--- a/
lisp/files.el
+++ b/
lisp/files.el
@@
-399,7
+399,7
@@
Not actually set up until the first time you you use it.")
(if (not (file-directory-p dir))
(if (file-exists-p dir)
(error "%s is not a directory" dir)
- (error "%s: no such directory"))
+ (error "%s: no such directory"
dir
))
(if (file-executable-p dir)
(setq default-directory dir)
(error "Cannot cd to %s: Permission denied" dir))))